home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / editor / gdphrc14.lha / ged-phrasecomp / misc / autodoc.mk next >
Text File  |  1996-04-18  |  1KB  |  62 lines

  1. #
  2. # $PROJECT: Include Makefiles
  3. #
  4. # $VER: autodoc.mk 41.1 (31.12.95)
  5. #
  6. # by
  7. #
  8. # Stefan Ruppert , Windthorststrasse 5 , 65439 Floersheim , GERMANY
  9. #
  10. # (C) Copyright 1995
  11. # All Rights Reserved !
  12. #
  13. # $HISTORY:
  14. #
  15. # 31.12.95 : 041.001 : added readme target
  16. # 21.07.95 : 001.001 : initial
  17. #
  18.  
  19. ##############################################################################
  20. #
  21. # commands
  22. #
  23.  
  24. RX     = Sys:Rexxc/rx
  25.  
  26.  
  27. ##############################################################################
  28. #
  29. # generate autodocs
  30. #
  31.  
  32. $(filter %.doc,$(AUTODOC)) : $(SRCS)
  33.      c:swtools/makedoc $^ AUTODOC $@ $(MAKEDOCFLAGS)
  34.  
  35. ##############################################################################
  36. #
  37. # convert autodoc to an amigaguide
  38. #
  39.  
  40. $(GUIDE) : $(AUTODOC)
  41.     c:swtools/makexref FROM $^ TO t:tmp.xref NOICON VERBOSE CATEGORY Tmp
  42.     c:swtools/loadxref t:tmp.xref INDEX
  43.     c:swtools/xrefconvert FROM $(filter %.doc,$^) TO $(@D) VERBOSE $(MAKEGUIDEFLAGS)
  44.     c:swtools/expungexref Tmp
  45.     delete t:tmp.xref
  46.  
  47. $(XREF) : $(AUTODOC)
  48.     c:swtools/expungexref $(XREFCATEGORY)
  49.     c:swtools/makexref FROM $^ TO $@ NOICON VERSION $(VERSION) REVISION $(REVISION) \
  50.                              VERBOSE CATEGORY $(XREFCATEGORY)
  51.  
  52. ##############################################################################
  53. #
  54. # generate standard readme
  55. #
  56.  
  57. readme: force
  58.     $(RX) makereadme.rexx $(NAME) $(HISTORY) $(PRJREADME) $(VERSTR) $(DISTTYPE) $(PLACE) $(SHORT) >$(README)
  59.  
  60. force:
  61.  
  62.